home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / vbcc / machines / amiga68k / libsrc / math / isinf.c < prev    next >
Encoding:
Text File  |  1995-09-11  |  128 b   |  6 lines

  1. int isinf(double a)
  2. {
  3.   unsigned long *b=(unsigned long *)&a;
  4.   return (b[0]&0x7ff00000)==0x7ff00000&&!(b[0]&0xfffff)&&!b[1];
  5. }
  6.